My Stuff
Loading
-
August 02, 2023 | Question of the Week
Hello everyone! 😄 It's time to get your heads in the game! Do you have what it takes to face this week's challenge? Power up your memory and comment your answer below.1 -
Re: Is it possible to filtering and display standard field values in NetSuite?
Hi, Apologies on the late response. I have tried to get the specific record of Time Track using SuiteQL and here's what I have got. Here's the record via NetSuite UI: Using the Query: select em.entit…4 -
Re: Is it possible to filtering and display standard field values in NetSuite?
Hi, Here's the sample SuiteQL to try. require(['N/query'], function (query) { var csFileIdQuery = "select em.entityid,tb.hours,it.itemid from timebill as tb, item as it, employee as em where tb.…4 -
Re: How to get the value from BCC in email using SuiteScript?
Hi, Can you try to use this code snippet to meet your concern? var bccValue = emailRecord.getValue({ fieldId: 'bcc' }); These are SuiteAnswers Articles about email, just to set a proper expectation, …1 -
Re: Is it possible to filter a standard dropdown field using SuiteScript based on a criteria?
Hi, Here's an example code snippet function pageInit(context) { var form = context.form; var dropdownField = form.getField({ id: 'dropdown_field_id' }); // Define your search criteria here var filter…1